Now to get started with Schematic, it needs to know how to connect to your database, currently to do this you need to first setup your folders for your schematic configuration.

First thing, in the root of your project create a folder for your schemas

    mkdir schemas

Then you can simply use the schematic migrations:generate command to create new schema files or create them manually.

Now that you've done that you will can create a config file which will have information about the file format to use for your schemas and configurations and also the directory your schemas live in, if you don't create this configuration file then you'll need to pass it through in the commands.

    touch .schematic.yaml

Within the configuration file add a directory line configuration to define the directory for your schemas:

    nano .schematic.yaml

    directory: /Users/andrefigueira/Projects/Schematic/schemas/

You would follow these steps for each environment you want Schematic to connect to, currently Schematic does not support SSH tunneling to be run locally on remote machines to which you need a tunnel to.